DOORS Folders

Hi,
I was wondering if there is any path to the "Home" DOORS folder (like, is there any way to bypass the "C:\\Program Files (x86)\\Rational\\DOORS\\9.4\\" so that you don't need to change the program for each version of DOORS?
Thanks!
josiah820 - Fri Aug 03 15:41:15 EDT 2012

Re: DOORS Folders
GothSloth - Fri Aug 03 15:55:34 EDT 2012

Hi josiah820,

This thread might help you.

https://www.ibm.com/developerworks/forums/thread.jspa?messageID=14236878&#14236878

You can also use the "-addins" command line switch to specify the include file search path. Take a look at:

http://publib.boulder.ibm.com/infocenter/doorshlp/v9/index.jsp?topic=/com.ibm.doors.configuring.doc/topics/c_clientcommandswitches.html

GothSloth

PS. I'm guessing you are asking about include file paths in DXL. Sorry if I missed the boat entirely.

Re: DOORS Folders
SystemAdmin - Sat Aug 04 00:59:31 EDT 2012

// Environment variable
const string RPE_HOME = getenv("RPE_HOME") // RPE variable
const string DOORSHOME = getenv("DOORSHOME") // DOORS variable
const string USER_PROFILE = getenv("USERPROFILE") // Desktop variable
 
// RPE fullpath
const string RPE_LAUNCH = RPE_HOME "\\launcher\\rpe-launcher.exe"
// DOORS fullpath
const string DOORS_LAUNCH = DOORSHOME "bin\\doors.exe"

 


-Jim

 

Re: DOORS Folders
josiah820 - Tue Aug 14 08:40:45 EDT 2012

Thanks for your help!